home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / gnu / emacs.lha / emacs-19.16 / src / gmalloc.c < prev    next >
C/C++ Source or Header  |  1993-07-06  |  37KB  |  1,264 lines

  1. /* DO NOT EDIT THIS FILE -- it is automagically generated.  -*- C -*- */
  2.  
  3. #define _MALLOC_INTERNAL
  4.  
  5. /* The malloc headers and source files from the C library follow here.  */
  6.  
  7. /* Declarations for `malloc' and friends.
  8.    Copyright 1990, 1991, 1992, 1993 Free Software Foundation, Inc.
  9.           Written May 1989 by Mike Haertel.
  10.  
  11. This library is free software; you can redistribute it and/or
  12. modify it under the terms of the GNU Library General Public License as
  13. published by the Free Software Foundation; either version 2 of the
  14. License, or (at your option) any later version.
  15.  
  16. This library is distributed in the hope that it will be useful,
  17. but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  19. Library General Public License for more details.
  20.  
  21. You should have received a copy of the GNU Library General Public
  22. License along with this library; see the file COPYING.LIB.  If
  23. not, write to the Free Software Foundation, Inc., 675 Mass Ave,
  24. Cambridge, MA 02139, USA.
  25.  
  26.    The author may be reached (Email) at the address mike@ai.mit.edu,
  27.    or (US mail) as Mike Haertel c/o Free Software Foundation.  */
  28.  
  29. #ifndef _MALLOC_H
  30.  
  31. #define _MALLOC_H    1
  32.  
  33. #ifdef _MALLOC_INTERNAL
  34.  
  35. #ifdef    HAVE_CONFIG_H
  36. #include "config.h"
  37. #endif
  38.  
  39. #if    defined(_LIBC) || defined(STDC_HEADERS) || defined(USG)
  40. #include <string.h>
  41. #else
  42. #ifndef memset
  43. #define    memset(s, zero, n)    bzero ((s), (n))
  44. #endif
  45. #ifndef memcpy
  46. #define    memcpy(d, s, n)        bcopy ((s), (d), (n))
  47. #endif
  48. #endif
  49.  
  50. #if    defined(__GNU_LIBRARY__) || defined(__STDC__)
  51. #include <limits.h>
  52. #else
  53. #define    CHAR_BIT    8
  54. #endif
  55.  
  56. #endif    /* _MALLOC_INTERNAL.  */
  57.  
  58.  
  59. #ifdef    __cplusplus
  60. extern "C"
  61. {
  62. #endif
  63.  
  64. #if defined (__cplusplus) || (defined (__STDC__) && __STDC__)
  65. #undef    __P
  66. #define    __P(args)    args
  67. #undef    __ptr_t
  68. #define    __ptr_t        void *
  69. #else /* Not C++ or ANSI C.  */
  70. #undef    __P
  71. #define    __P(args)    ()
  72. #undef    const
  73. #define    const
  74. #undef    __ptr_t
  75. #define    __ptr_t        char *
  76. #endif /* C++ or ANSI C.  */
  77.  
  78. #ifdef    __STDC__
  79. #include <stddef.h>
  80. #else
  81. #undef    size_t
  82. #define    size_t        unsigned int
  83. #undef    ptrdiff_t
  84. #define    ptrdiff_t    int
  85. #endif
  86.  
  87. #ifndef    NULL
  88. #define    NULL    0
  89. #endif
  90.  
  91.  
  92. /* Allocate SIZE bytes of memory.  */
  93. extern __ptr_t malloc __P ((size_t __size));
  94. /* Re-allocate the previously allocated block
  95.    in __ptr_t, making the new block SIZE bytes long.  */
  96. extern __ptr_t realloc __P ((__ptr_t __ptr, size_t __size));
  97. /* Allocate NMEMB elements of SIZE bytes each, all initialized to 0.  */
  98. extern __ptr_t calloc __P ((size_t __nmemb, size_t __size));
  99. /* Free a block allocated by `malloc', `realloc' or `calloc'.  */
  100. extern void free __P ((__ptr_t __ptr));
  101.  
  102. /* Allocate SIZE bytes allocated to ALIGNMENT bytes.  */
  103. extern __ptr_t memalign __P ((size_t __alignment, size_t __size));
  104.  
  105. /* Allocate SIZE bytes on a page boundary.  */
  106. extern __ptr_t valloc __P ((size_t __size));
  107.  
  108.  
  109. #ifdef _MALLOC_INTERNAL
  110.  
  111. /* The allocator divides the heap into blocks of fixed size; large
  112.    requests receive one or more whole blocks, and small requests
  113.    receive a fragment of a block.  Fragment sizes are powers of two,
  114.    and all fragments of a block are the same size.  When all the
  115.    fragments in a block have been freed, the block itself is freed.  */
  116. #define INT_BIT        (CHAR_BIT * sizeof(int))
  117. #define BLOCKLOG    (INT_BIT > 16 ? 12 : 9)
  118. #define BLOCKSIZE    (1 << BLOCKLOG)
  119. #define BLOCKIFY(SIZE)    (((SIZE) + BLOCKSIZE - 1) / BLOCKSIZE)
  120.  
  121. /* Determine the amount of memory spanned by the initial heap table
  122.    (not an absolute limit).  */
  123. #define HEAP        (INT_BIT > 16 ? 4194304 : 65536)
  124.  
  125. /* Number of contiguous free blocks allowed to build up at the end of
  126.    memory before they will be returned to the system.  */
  127. #define FINAL_FREE_BLOCKS    8
  128.  
  129. /* Data structure giving per-block information.  */
  130. typedef union
  131.   {
  132.     /* Heap information for a busy block.  */
  133.     struct
  134.       {
  135.     /* Zero for a large block, or positive giving the
  136.        logarithm to the base two of the fragment size.  */
  137.     int type;
  138.     union
  139.       {
  140.         struct
  141.           {
  142.         size_t nfree;    /* Free fragments in a fragmented block.  */
  143.         size_t first;    /* First free fragment of the block.  */
  144.           } frag;
  145.         /* Size (in blocks) of a large cluster.  */
  146.         size_t size;
  147.       } info;
  148.       } busy;
  149.     /* Heap information for a free block
  150.        (that may be the first of a free cluster).  */
  151.     struct
  152.       {
  153.     size_t size;        /* Size (in blocks) of a free cluster.  */
  154.     size_t next;        /* Index of next free cluster.  */
  155.     size_t prev;        /* Index of previous free cluster.  */
  156.       } free;
  157.   } malloc_info;
  158.  
  159. /* Pointer to first block of the heap.  */
  160. extern char *_heapbase;
  161.  
  162. /* Table indexed by block number giving per-block information.  */
  163. extern malloc_info *_heapinfo;
  164.  
  165. /* Address to block number and vice versa.  */
  166. #define BLOCK(A)    (((char *) (A) - _heapbase) / BLOCKSIZE + 1)
  167. #define ADDRESS(B)    ((__ptr_t) (((B) - 1) * BLOCKSIZE + _heapbase))
  168.  
  169. /* Current search index for the heap table.  */
  170. extern size_t _heapindex;
  171.  
  172. /* Limit of valid info table indices.  */
  173. extern size_t _heaplimit;
  174.  
  175. /* Doubly linked lists of free fragments.  */
  176. struct list
  177.   {
  178.     struct list *next;
  179.     struct list *prev;
  180.   };
  181.  
  182. /* Free list headers for each fragment size.  */
  183. extern struct list _fraghead[];
  184.  
  185. /* List of blocks allocated with `memalign' (or `valloc').  */
  186. struct alignlist
  187.   {
  188.     struct alignlist *next;
  189.     __ptr_t aligned;        /* The address that memaligned returned.  */
  190.     __ptr_t exact;        /* The address that malloc returned.  */
  191.   };
  192. extern struct alignlist *_aligned_blocks;
  193.  
  194. /* Instrumentation.  */
  195. extern size_t _chunks_used;
  196. extern size_t _bytes_used;
  197. extern size_t _chunks_free;
  198. extern size_t _bytes_free;
  199.  
  200. /* Internal version of `free' used in `morecore' (malloc.c). */
  201. extern void _free_internal __P ((__ptr_t __ptr));
  202.  
  203. #endif /* _MALLOC_INTERNAL.  */
  204.  
  205. /* Underlying allocation function; successive calls should
  206.    return contiguous pieces of memory.  */
  207. extern __ptr_t (*__morecore) __P ((ptrdiff_t __size));
  208.  
  209. /* Default value of `__morecore'.  */
  210. extern __ptr_t __default_morecore __P ((ptrdiff_t __size));
  211.  
  212. /* If not NULL, this function is called after each time
  213.    `__morecore' is called to increase the data size.  */
  214. extern void (*__after_morecore_hook) __P ((void));
  215.  
  216. /* Nonzero if `malloc' has been called and done its initialization.  */
  217. extern int __malloc_initialized;
  218.  
  219. /* Hooks for debugging versions.  */
  220. extern void (*__free_hook) __P ((__ptr_t __ptr));
  221. extern __ptr_t (*__malloc_hook) __P ((size_t __size));
  222. extern __ptr_t (*__realloc_hook) __P ((__ptr_t __ptr, size_t __size));
  223.  
  224. /* Activate a standard collection of debugging hooks.  */
  225. extern int mcheck __P ((void (*__func) __P ((void))));
  226.  
  227. /* Activate a standard collection of tracing hooks.  */
  228. extern void mtrace __P ((void));
  229.  
  230. /* Statistics available to the user.  */
  231. struct mstats
  232.   {
  233.     size_t bytes_total;        /* Total size of the heap. */
  234.     size_t chunks_used;        /* Chunks allocated by the user. */
  235.     size_t bytes_used;        /* Byte total of user-allocated chunks. */
  236.     size_t chunks_free;        /* Chunks in the free list. */
  237.     size_t bytes_free;        /* Byte total of chunks in the free list. */
  238.   };
  239.  
  240. /* Pick up the current statistics. */
  241. extern struct mstats mstats __P ((void));
  242.  
  243. /* Call WARNFUN with a warning message when memory usage is high.  */
  244. extern void memory_warnings __P ((__ptr_t __start,
  245.                   void (*__warnfun) __P ((__const char *))));
  246.  
  247.  
  248. /* Relocating allocator.  */
  249.  
  250. /* Allocate SIZE bytes, and store the address in *HANDLEPTR.  */
  251. extern __ptr_t r_alloc __P ((__ptr_t *__handleptr, size_t __size));
  252.  
  253. /* Free the storage allocated in HANDLEPTR.  */
  254. extern void r_alloc_free __P ((__ptr_t *__handleptr));
  255.  
  256. /* Adjust the block at HANDLEPTR to be SIZE bytes long.  */
  257. extern __ptr_t r_re_alloc __P ((__ptr_t *__handleptr, size_t __size));
  258.  
  259.  
  260. #ifdef    __cplusplus
  261. }
  262. #endif
  263.  
  264. #endif /* malloc.h  */
  265. /* Memory allocator `malloc'.
  266.    Copyright 1990, 1991, 1992, 1993 Free Software Foundation
  267.           Written May 1989 by Mike Haertel.
  268.  
  269. This library is free software; you can redistribute it and/or
  270. modify it under the terms of the GNU Library General Public License as
  271. published by the Free Software Foundation; either version 2 of the
  272. License, or (at your option) any later version.
  273.  
  274. This library is distributed in the hope that it will be useful,
  275. but WITHOUT ANY WARRANTY; without even the implied warranty of
  276. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  277. Library General Public License for more details.
  278.  
  279. You should have received a copy of the GNU Library General Public
  280. License along with this library; see the file COPYING.LIB.  If
  281. not, write to the Free Software Foundation, Inc., 675 Mass Ave,
  282. Cambridge, MA 02139, USA.
  283.  
  284.    The author may be reached (Email) at the address mike@ai.mit.edu,
  285.    or (US mail) as Mike Haertel c/o Free Software Foundation.  */
  286.  
  287. #ifndef    _MALLOC_INTERNAL
  288. #define _MALLOC_INTERNAL
  289. #include <malloc.h>
  290. #endif
  291.  
  292. /* How to really get more memory.  */
  293. __ptr_t (*__morecore) __P ((ptrdiff_t __size)) = __default_morecore;
  294.  
  295. /* Debugging hook for `malloc'.  */
  296. __ptr_t (*__malloc_hook) __P ((size_t __size));
  297.  
  298. /* Pointer to the base of the first block.  */
  299. char *_heapbase;
  300.  
  301. /* Block information table.  Allocated with align/__free (not malloc/free).  */
  302. malloc_info *_heapinfo;
  303.  
  304. /* Number of info entries.  */
  305. static size_t heapsize;
  306.  
  307. /* Search index in the info table.  */
  308. size_t _heapindex;
  309.  
  310. /* Limit of valid info table indices.  */
  311. size_t _heaplimit;
  312.  
  313. /* Free lists for each fragment size.  */
  314. struct list _fraghead[BLOCKLOG];
  315.  
  316. /* Instrumentation.  */
  317. size_t _chunks_used;
  318. size_t _bytes_used;
  319. size_t _chunks_free;
  320. size_t _bytes_free;
  321.  
  322. /* Are you experienced?  */
  323. int __malloc_initialized;
  324.  
  325. void (*__after_morecore_hook) __P ((void));
  326.  
  327. /* Aligned allocation.  */
  328. static __ptr_t align __P ((size_t));
  329. static __ptr_t
  330. align (size)
  331.      size_t size;
  332. {
  333.   __ptr_t result;
  334.   unsigned long int adj;
  335.  
  336.   result = (*__morecore) (size);
  337.   adj = (unsigned long int) ((unsigned long int) ((char *) result -
  338.                         (char *) NULL)) % BLOCKSIZE;
  339.   if (adj != 0)
  340.     {
  341.       adj = BLOCKSIZE - adj;
  342.       (void) (*__morecore) (adj);
  343.       result = (char *) result + adj;
  344.     }
  345.  
  346.   if (__after_morecore_hook)
  347.     (*__after_morecore_hook) ();
  348.  
  349.   return result;
  350. }
  351.  
  352. /* Set everything up and remember that we have.  */
  353. static int initialize __P ((void));
  354. static int
  355. initialize ()
  356. {
  357.   heapsize = HEAP / BLOCKSIZE;
  358.   _heapinfo = (malloc_info *) align (heapsize * sizeof (malloc_info));
  359.   if (_heapinfo == NULL)
  360.     return 0;
  361.   memset (_heapinfo, 0, heapsize * sizeof (malloc_info));
  362.   _heapinfo[0].free.size = 0;
  363.   _heapinfo[0].free.next = _heapinfo[0].free.prev = 0;
  364.   _heapindex = 0;
  365.   _heapbase = (char *) _heapinfo;
  366.   __malloc_initialized = 1;
  367.   return 1;
  368. }
  369.  
  370. /* Get neatly aligned memory, initializing or
  371.    growing the heap info table as necessary. */
  372. static __ptr_t morecore __P ((size_t));
  373. static __ptr_t
  374. morecore (size)
  375.      size_t size;
  376. {
  377.   __ptr_t result;
  378.   malloc_info *newinfo, *oldinfo;
  379.   size_t newsize;
  380.  
  381.   result = align (size);
  382.   if (result == NULL)
  383.     return NULL;
  384.  
  385.   /* Check if we need to grow the info table.  */
  386.   if ((size_t) BLOCK ((char *) result + size) > heapsize)
  387.     {
  388.       newsize = heapsize;
  389.       while ((size_t) BLOCK ((char *) result + size) > newsize)
  390.     newsize *= 2;
  391.       newinfo = (malloc_info *) align (newsize * sizeof (malloc_info));
  392.       if (newinfo == NULL)
  393.     {
  394.       (*__morecore) (-size);
  395.       return NULL;
  396.     }
  397.       memset (newinfo, 0, newsize * sizeof (malloc_info));
  398.       memcpy (newinfo, _heapinfo, heapsize * sizeof (malloc_info));
  399.       oldinfo = _heapinfo;
  400.       newinfo[BLOCK (oldinfo)].busy.type = 0;
  401.       newinfo[BLOCK (oldinfo)].busy.info.size
  402.     = BLOCKIFY (heapsize * sizeof (malloc_info));
  403.       _heapinfo = newinfo;
  404.       _free_internal (oldinfo);
  405.       heapsize = newsize;
  406.     }
  407.  
  408.   _heaplimit = BLOCK ((char *) result + size);
  409.   return result;
  410. }
  411.  
  412. /* Allocate memory from the heap.  */
  413. __ptr_t
  414. malloc (size)
  415.      size_t size;
  416. {
  417.   __ptr_t result;
  418.   size_t block, blocks, lastblocks, start;
  419.   register size_t i;
  420.   struct list *next;
  421.  
  422.   /* ANSI C allows `malloc (0)' to either return NULL, or to return a
  423.      valid address you can realloc and free (though not dereference).
  424.  
  425.      It turns out that some extant code (sunrpc, at least Ultrix's version)
  426.      expects `malloc (0)' to return non-NULL and breaks otherwise.
  427.      Be compatible.  */
  428.  
  429. #if    0
  430.   if (size == 0)
  431.     return NULL;
  432. #endif
  433.  
  434.   if (__malloc_hook != NULL)
  435.     return (*__malloc_hook) (size);
  436.  
  437.   if (!__malloc_initialized)
  438.     if (!initialize ())
  439.       return NULL;
  440.  
  441.   if (size < sizeof (struct list))
  442.       size = sizeof (struct list);
  443.  
  444.   /* Determine the allocation policy based on the request size.  */
  445.   if (size <= BLOCKSIZE / 2)
  446.     {
  447.       /* Small allocation to receive a fragment of a block.
  448.      Determine the logarithm to base two of the fragment size. */
  449.       register size_t log = 1;
  450.       --size;
  451.       while ((size /= 2) != 0)
  452.     ++log;
  453.  
  454.       /* Look in the fragment lists for a
  455.      free fragment of the desired size. */
  456.       next = _fraghead[log].next;
  457.       if (next != NULL)
  458.     {
  459.       /* There are free fragments of this size.
  460.          Pop a fragment out of the fragment list and return it.
  461.          Update the block's nfree and first counters. */
  462.       result = (__ptr_t) next;
  463.       next->prev->next = next->next;
  464.       if (next->next != NULL)
  465.         next->next->prev = next->prev;
  466.       block = BLOCK (result);
  467.       if (--_heapinfo[block].busy.info.frag.nfree != 0)
  468.         _heapinfo[block].busy.info.frag.first = (unsigned long int)
  469.           ((unsigned long int) ((char *) next->next - (char *) NULL)
  470.            % BLOCKSIZE) >> log;
  471.  
  472.       /* Update the statistics.  */
  473.       ++_chunks_used;
  474.       _bytes_used += 1 << log;
  475.       --_chunks_free;
  476.       _bytes_free -= 1 << log;
  477.     }
  478.       else
  479.     {
  480.       /* No free fragments of the desired size, so get a new block
  481.          and break it into fragments, returning the first.  */
  482.       result = malloc (BLOCKSIZE);
  483.       if (result == NULL)
  484.         return NULL;
  485.  
  486.       /* Link all fragments but the first into the free list.  */
  487.       for (i = 1; i < (size_t) (BLOCKSIZE >> log); ++i)
  488.         {
  489.           next = (struct list *) ((char *) result + (i << log));
  490.           next->next = _fraghead[log].next;
  491.           next->prev = &_fraghead[log];
  492.           next->prev->next = next;
  493.           if (next->next != NULL)
  494.         next->next->prev = next;
  495.         }
  496.  
  497.       /* Initialize the nfree and first counters for this block.  */
  498.       block = BLOCK (result);
  499.       _heapinfo[block].busy.type = log;
  500.       _heapinfo[block].busy.info.frag.nfree = i - 1;
  501.       _heapinfo[block].busy.info.frag.first = i - 1;
  502.  
  503.       _chunks_free += (BLOCKSIZE >> log) - 1;
  504.       _bytes_free += BLOCKSIZE - (1 << log);
  505.       _bytes_used -= BLOCKSIZE - (1 << log);
  506.     }
  507.     }
  508.   else
  509.     {
  510.       /* Large allocation to receive one or more blocks.
  511.      Search the free list in a circle starting at the last place visited.
  512.      If we loop completely around without finding a large enough
  513.      space we will have to get more memory from the system.  */
  514.       blocks = BLOCKIFY (size);
  515.       start = block = _heapindex;
  516.       while (_heapinfo[block].free.size < blocks)
  517.     {
  518.       block = _heapinfo[block].free.next;
  519.       if (block == start)
  520.         {
  521.           /* Need to get more from the system.  Check to see if
  522.          the new core will be contiguous with the final free
  523.          block; if so we don't need to get as much.  */
  524.           block = _heapinfo[0].free.prev;
  525.           lastblocks = _heapinfo[block].free.size;
  526.           if (_heaplimit != 0 && block + lastblocks == _heaplimit &&
  527.           (*__morecore) (0) == ADDRESS (block + lastblocks) &&
  528.           (morecore ((blocks - lastblocks) * BLOCKSIZE)) != NULL)
  529.         {
  530.           _heapinfo[block].free.size = blocks;
  531.           _bytes_free += (blocks - lastblocks) * BLOCKSIZE;
  532.           continue;
  533.         }
  534.           result = morecore (blocks * BLOCKSIZE);
  535.           if (result == NULL)
  536.         return NULL;
  537.           block = BLOCK (result);
  538.           _heapinfo[block].busy.type = 0;
  539.           _heapinfo[block].busy.info.size = blocks;
  540.           ++_chunks_used;
  541.           _bytes_used += blocks * BLOCKSIZE;
  542.           return result;
  543.         }
  544.     }
  545.  
  546.       /* At this point we have found a suitable free list entry.
  547.      Figure out how to remove what we need from the list. */
  548.       result = ADDRESS (block);
  549.       if (_heapinfo[block].free.size > blocks)
  550.     {
  551.       /* The block we found has a bit left over,
  552.          so relink the tail end back into the free list. */
  553.       _heapinfo[block + blocks].free.size
  554.         = _heapinfo[block].free.size - blocks;
  555.       _heapinfo[block + blocks].free.next
  556.         = _heapinfo[block].free.next;
  557.       _heapinfo[block + blocks].free.prev
  558.         = _heapinfo[block].free.prev;
  559.       _heapinfo[_heapinfo[block].free.prev].free.next
  560.         = _heapinfo[_heapinfo[block].free.next].free.prev
  561.         = _heapindex = block + blocks;
  562.     }
  563.       else
  564.     {
  565.       /* The block exactly matches our requirements,
  566.          so just remove it from the list. */
  567.       _heapinfo[_heapinfo[block].free.next].free.prev
  568.         = _heapinfo[block].free.prev;
  569.       _heapinfo[_heapinfo[block].free.prev].free.next
  570.         = _heapindex = _heapinfo[block].free.next;
  571.       --_chunks_free;
  572.     }
  573.  
  574.       _heapinfo[block].busy.type = 0;
  575.       _heapinfo[block].busy.info.size = blocks;
  576.       ++_chunks_used;
  577.       _bytes_used += blocks * BLOCKSIZE;
  578.       _bytes_free -= blocks * BLOCKSIZE;
  579.     }
  580.  
  581.   return result;
  582. }
  583.  
  584. #ifndef _LIBC
  585.  
  586. /* On some ANSI C systems, some libc functions call _malloc, _free
  587.    and _realloc.  Make them use the GNU functions.  */
  588.  
  589. __ptr_t
  590. _malloc (size)
  591.      size_t size;
  592. {
  593.   return malloc (size);
  594. }
  595.  
  596. void
  597. _free (ptr)
  598.      __ptr_t ptr;
  599. {
  600.   free (ptr);
  601. }
  602.  
  603. __ptr_t
  604. _realloc (ptr, size)
  605.      __ptr_t ptr;
  606.      size_t size;
  607. {
  608.   return realloc (ptr, size);
  609. }
  610.  
  611. #endif
  612. /* Free a block of memory allocated by `malloc'.
  613.    Copyright 1990, 1991, 1992 Free Software Foundation
  614.           Written May 1989 by Mike Haertel.
  615.  
  616. This library is free software; you can redistribute it and/or
  617. modify it under the terms of the GNU Library General Public License as
  618. published by the Free Software Foundation; either version 2 of the
  619. License, or (at your option) any later version.
  620.  
  621. This library is distributed in the hope that it will be useful,
  622. but WITHOUT ANY WARRANTY; without even the implied warranty of
  623. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  624. Library General Public License for more details.
  625.  
  626. You should have received a copy of the GNU Library General Public
  627. License along with this library; see the file COPYING.LIB.  If
  628. not, write to the Free Software Foundation, Inc., 675 Mass Ave,
  629. Cambridge, MA 02139, USA.
  630.  
  631.    The author may be reached (Email) at the address mike@ai.mit.edu,
  632.    or (US mail) as Mike Haertel c/o Free Software Foundation.  */
  633.  
  634. #ifndef    _MALLOC_INTERNAL
  635. #define _MALLOC_INTERNAL
  636. #include <malloc.h>
  637. #endif
  638.  
  639. /* Debugging hook for free.  */
  640. void (*__free_hook) __P ((__ptr_t __ptr));
  641.  
  642. /* List of blocks allocated by memalign.  */
  643. struct alignlist *_aligned_blocks = NULL;
  644.  
  645. /* Return memory to the heap.
  646.    Like `free' but don't call a __free_hook if there is one.  */
  647. void
  648. _free_internal (ptr)
  649.      __ptr_t ptr;
  650. {
  651.   int type;
  652.   size_t block, blocks;
  653.   register size_t i;
  654.   struct list *prev, *next;
  655.  
  656.   block = BLOCK (ptr);
  657.  
  658.   type = _heapinfo[block].busy.type;
  659.   switch (type)
  660.     {
  661.     case 0:
  662.       /* Get as many statistics as early as we can.  */
  663.       --_chunks_used;
  664.       _bytes_used -= _heapinfo[block].busy.info.size * BLOCKSIZE;
  665.       _bytes_free += _heapinfo[block].busy.info.size * BLOCKSIZE;
  666.  
  667.       /* Find the free cluster previous to this one in the free list.
  668.      Start searching at the last block referenced; this may benefit
  669.      programs with locality of allocation.  */
  670.       i = _heapindex;
  671.       if (i > block)
  672.     while (i > block)
  673.       i = _heapinfo[i].free.prev;
  674.       else
  675.     {
  676.       do
  677.         i = _heapinfo[i].free.next;
  678.       while (i > 0 && i < block);
  679.       i = _heapinfo[i].free.prev;
  680.     }
  681.  
  682.       /* Determine how to link this block into the free list.  */
  683.       if (block == i + _heapinfo[i].free.size)
  684.     {
  685.       /* Coalesce this block with its predecessor.  */
  686.       _heapinfo[i].free.size += _heapinfo[block].busy.info.size;
  687.       block = i;
  688.     }
  689.       else
  690.     {
  691.       /* Really link this block back into the free list.  */
  692.       _heapinfo[block].free.size = _heapinfo[block].busy.info.size;
  693.       _heapinfo[block].free.next = _heapinfo[i].free.next;
  694.       _heapinfo[block].free.prev = i;
  695.       _heapinfo[i].free.next = block;
  696.       _heapinfo[_heapinfo[block].free.next].free.prev = block;
  697.       ++_chunks_free;
  698.     }
  699.  
  700.       /* Now that the block is linked in, see if we can coalesce it
  701.      with its successor (by deleting its successor from the list
  702.      and adding in its size).  */
  703.       if (block + _heapinfo[block].free.size == _heapinfo[block].free.next)
  704.     {
  705.       _heapinfo[block].free.size
  706.         += _heapinfo[_heapinfo[block].free.next].free.size;
  707.       _heapinfo[block].free.next
  708.         = _heapinfo[_heapinfo[block].free.next].free.next;
  709.       _heapinfo[_heapinfo[block].free.next].free.prev = block;
  710.       --_chunks_free;
  711.     }
  712.  
  713.       /* Now see if we can return stuff to the system.  */
  714.       blocks = _heapinfo[block].free.size;
  715.       if (blocks >= FINAL_FREE_BLOCKS && block + blocks == _heaplimit
  716.       && (*__morecore) (0) == ADDRESS (block + blocks))
  717.     {
  718.       register size_t bytes = blocks * BLOCKSIZE;
  719.       _heaplimit -= blocks;
  720.       (*__morecore) (-bytes);
  721.       _heapinfo[_heapinfo[block].free.prev].free.next
  722.         = _heapinfo[block].free.next;
  723.       _heapinfo[_heapinfo[block].free.next].free.prev
  724.         = _heapinfo[block].free.prev;
  725.       block = _heapinfo[block].free.prev;
  726.       --_chunks_free;
  727.       _bytes_free -= bytes;
  728.     }
  729.  
  730.       /* Set the next search to begin at this block.  */
  731.       _heapindex = block;
  732.       break;
  733.  
  734.     default:
  735.       /* Do some of the statistics.  */
  736.       --_chunks_used;
  737.       _bytes_used -= 1 << type;
  738.       ++_chunks_free;
  739.       _bytes_free += 1 << type;
  740.  
  741.       /* Get the address of the first free fragment in this block.  */
  742.       prev = (struct list *) ((char *) ADDRESS (block) +
  743.                (_heapinfo[block].busy.info.frag.first << type));
  744.  
  745.       if (_heapinfo[block].busy.info.frag.nfree == (BLOCKSIZE >> type) - 1)
  746.     {
  747.       /* If all fragments of this block are free, remove them
  748.          from the fragment list and free the whole block.  */
  749.       next = prev;
  750.       for (i = 1; i < (size_t) (BLOCKSIZE >> type); ++i)
  751.         next = next->next;
  752.       prev->prev->next = next;
  753.       if (next != NULL)
  754.         next->prev = prev->prev;
  755.       _heapinfo[block].busy.type = 0;
  756.       _heapinfo[block].busy.info.size = 1;
  757.  
  758.       /* Keep the statistics accurate.  */
  759.       ++_chunks_used;
  760.       _bytes_used += BLOCKSIZE;
  761.       _chunks_free -= BLOCKSIZE >> type;
  762.       _bytes_free -= BLOCKSIZE;
  763.  
  764.       free (ADDRESS (block));
  765.     }
  766.       else if (_heapinfo[block].busy.info.frag.nfree != 0)
  767.     {
  768.       /* If some fragments of this block are free, link this
  769.          fragment into the fragment list after the first free
  770.          fragment of this block. */
  771.       next = (struct list *) ptr;
  772.       next->next = prev->next;
  773.       next->prev = prev;
  774.       prev->next = next;
  775.       if (next->next != NULL)
  776.         next->next->prev = next;
  777.       ++_heapinfo[block].busy.info.frag.nfree;
  778.     }
  779.       else
  780.     {
  781.       /* No fragments of this block are free, so link this
  782.          fragment into the fragment list and announce that
  783.          it is the first free fragment of this block. */
  784.       prev = (struct list *) ptr;
  785.       _heapinfo[block].busy.info.frag.nfree = 1;
  786.       _heapinfo[block].busy.info.frag.first = (unsigned long int)
  787.         ((unsigned long int) ((char *) ptr - (char *) NULL)
  788.          % BLOCKSIZE >> type);
  789.       prev->next = _fraghead[type].next;
  790.       prev->prev = &_fraghead[type];
  791.       prev->prev->next = prev;
  792.       if (prev->next != NULL)
  793.         prev->next->prev = prev;
  794.     }
  795.       break;
  796.     }
  797. }
  798.  
  799. /* Return memory to the heap.  */
  800. void
  801. free (ptr)
  802.      __ptr_t ptr;
  803. {
  804.   register struct alignlist *l;
  805.  
  806.   if (ptr == NULL)
  807.     return;
  808.  
  809.   for (l = _aligned_blocks; l != NULL; l = l->next)
  810.     if (l->aligned == ptr)
  811.       {
  812.     l->aligned = NULL;    /* Mark the slot in the list as free.  */
  813.     ptr = l->exact;
  814.     break;
  815.       }
  816.  
  817.   if (__free_hook != NULL)
  818.     (*__free_hook) (ptr);
  819.   else
  820.     _free_internal (ptr);
  821. }
  822. /* Copyright (C) 1991, 1993 Free Software Foundation, Inc.
  823. This file is part of the GNU C Library.
  824.  
  825. The GNU C Library is free software; you can redistribute it and/or
  826. modify it under the terms of the GNU Library General Public License as
  827. published by the Free Software Foundation; either version 2 of the
  828. License, or (at your option) any later version.
  829.  
  830. The GNU C Library is distributed in the hope that it will be useful,
  831. but WITHOUT ANY WARRANTY; without even the implied warranty of
  832. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  833. Library General Public License for more details.
  834.  
  835. You should have received a copy of the GNU Library General Public
  836. License along with the GNU C Library; see the file COPYING.LIB.  If
  837. not, write to the Free Software Foundation, Inc., 675 Mass Ave,
  838. Cambridge, MA 02139, USA.  */
  839.  
  840. #ifndef    _MALLOC_INTERNAL
  841. #define _MALLOC_INTERNAL
  842. #include <malloc.h>
  843. #endif
  844.  
  845. #undef    cfree
  846.  
  847. #ifdef _LIBC
  848.  
  849. #include <ansidecl.h>
  850. #include <gnu-stabs.h>
  851.  
  852. function_alias(cfree, free, void, (ptr),
  853.            DEFUN(cfree, (ptr), PTR ptr))
  854.  
  855. #else
  856.  
  857. void
  858. cfree (ptr)
  859.      __ptr_t ptr;
  860. {
  861.   free (ptr);
  862. }
  863.  
  864. #endif
  865. /* Change the size of a block allocated by `malloc'.
  866.    Copyright 1990, 1991, 1992, 1993 Free Software Foundation, Inc.
  867.              Written May 1989 by Mike Haertel.
  868.  
  869. This library is free software; you can redistribute it and/or
  870. modify it under the terms of the GNU Library General Public License as
  871. published by the Free Software Foundation; either version 2 of the
  872. License, or (at your option) any later version.
  873.  
  874. This library is distributed in the hope that it will be useful,
  875. but WITHOUT ANY WARRANTY; without even the implied warranty of
  876. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  877. Library General Public License for more details.
  878.  
  879. You should have received a copy of the GNU Library General Public
  880. License along with this library; see the file COPYING.LIB.  If
  881. not, write to the Free Software Foundation, Inc., 675 Mass Ave,
  882. Cambridge, MA 02139, USA.
  883.  
  884.    The author may be reached (Email) at the address mike@ai.mit.edu,
  885.    or (US mail) as Mike Haertel c/o Free Software Foundation.  */
  886.  
  887. #ifndef    _MALLOC_INTERNAL
  888. #define _MALLOC_INTERNAL
  889. #include <malloc.h>
  890. #endif
  891.  
  892. #if    !defined(_LIBC) && !defined(STDC_HEADERS) && !defined(USG)
  893.  
  894. /* Snarfed directly from Emacs src/dispnew.c:
  895.    XXX Should use system bcopy if it handles overlap.  */
  896.  
  897. /* Like bcopy except never gets confused by overlap.  */
  898.  
  899. static void
  900. safe_bcopy (from, to, size)
  901.      char *from, *to;
  902.      int size;
  903. {
  904.   if (size <= 0 || from == to)
  905.     return;
  906.  
  907.   /* If the source and destination don't overlap, then bcopy can
  908.      handle it.  If they do overlap, but the destination is lower in
  909.      memory than the source, we'll assume bcopy can handle that.  */
  910.   if (to < from || from + size <= to)
  911.     bcopy (from, to, size);
  912.  
  913.   /* Otherwise, we'll copy from the end.  */
  914.   else
  915.     {
  916.       register char *endf = from + size;
  917.       register char *endt = to + size;
  918.  
  919.       /* If TO - FROM is large, then we should break the copy into
  920.      nonoverlapping chunks of TO - FROM bytes each.  However, if
  921.      TO - FROM is small, then the bcopy function call overhead
  922.      makes this not worth it.  The crossover point could be about
  923.      anywhere.  Since I don't think the obvious copy loop is too
  924.      bad, I'm trying to err in its favor.  */
  925.       if (to - from < 64)
  926.     {
  927.       do
  928.         *--endt = *--endf;
  929.       while (endf != from);
  930.     }
  931.       else
  932.     {
  933.       for (;;)
  934.         {
  935.           endt -= (to - from);
  936.           endf -= (to - from);
  937.  
  938.           if (endt < to)
  939.         break;
  940.  
  941.           bcopy (endf, endt, to - from);
  942.         }
  943.  
  944.       /* If SIZE wasn't a multiple of TO - FROM, there will be a
  945.          little left over.  The amount left over is
  946.          (endt + (to - from)) - to, which is endt - from.  */
  947.       bcopy (from, to, endt - from);
  948.     }
  949.     }
  950. }     
  951.  
  952. #define memmove(to, from, size) safe_bcopy ((from), (to), (size))
  953.  
  954. #endif
  955.  
  956.  
  957. #define min(A, B) ((A) < (B) ? (A) : (B))
  958.  
  959. /* Debugging hook for realloc.  */
  960. __ptr_t (*__realloc_hook) __P ((__ptr_t __ptr, size_t __size));
  961.  
  962. /* Resize the given region to the new size, returning a pointer
  963.    to the (possibly moved) region.  This is optimized for speed;
  964.    some benchmarks seem to indicate that greater compactness is
  965.    achieved by unconditionally allocating and copying to a
  966.    new region.  This module has incestuous knowledge of the
  967.    internals of both free and malloc. */
  968. __ptr_t
  969. realloc (ptr, size)
  970.      __ptr_t ptr;
  971.      size_t size;
  972. {
  973.   __ptr_t result;
  974.   int type;
  975.   size_t block, blocks, oldlimit;
  976.  
  977.   if (size == 0)
  978.     {
  979.       free (ptr);
  980.       return malloc (0);
  981.     }
  982.   else if (ptr == NULL)
  983.     return malloc (size);
  984.  
  985.   if (__realloc_hook != NULL)
  986.     return (*__realloc_hook) (ptr, size);
  987.  
  988.   block = BLOCK (ptr);
  989.  
  990.   type = _heapinfo[block].busy.type;
  991.   switch (type)
  992.     {
  993.     case 0:
  994.       /* Maybe reallocate a large block to a small fragment.  */
  995.       if (size <= BLOCKSIZE / 2)
  996.     {
  997.       result = malloc (size);
  998.       if (result != NULL)
  999.         {
  1000.           memcpy (result, ptr, size);
  1001.           free (ptr);
  1002.           return result;
  1003.         }
  1004.     }
  1005.  
  1006.       /* The new size is a large allocation as well;
  1007.      see if we can hold it in place. */
  1008.       blocks = BLOCKIFY (size);
  1009.       if (blocks < _heapinfo[block].busy.info.size)
  1010.     {
  1011.       /* The new size is smaller; return
  1012.          excess memory to the free list. */
  1013.       _heapinfo[block + blocks].busy.type = 0;
  1014.       _heapinfo[block + blocks].busy.info.size
  1015.         = _heapinfo[block].busy.info.size - blocks;
  1016.       _heapinfo[block].busy.info.size = blocks;
  1017.       free (ADDRESS (block + blocks));
  1018.       result = ptr;
  1019.     }
  1020.       else if (blocks == _heapinfo[block].busy.info.size)
  1021.     /* No size change necessary.  */
  1022.     result = ptr;
  1023.       else
  1024.     {
  1025.       /* Won't fit, so allocate a new region that will.
  1026.          Free the old region first in case there is sufficient
  1027.          adjacent free space to grow without moving. */
  1028.       blocks = _heapinfo[block].busy.info.size;
  1029.       /* Prevent free from actually returning memory to the system.  */
  1030.       oldlimit = _heaplimit;
  1031.       _heaplimit = 0;
  1032.       free (ptr);
  1033.       _heaplimit = oldlimit;
  1034.       result = malloc (size);
  1035.       if (result == NULL)
  1036.         {
  1037.           /* Now we're really in trouble.  We have to unfree
  1038.          the thing we just freed.  Unfortunately it might
  1039.          have been coalesced with its neighbors.  */
  1040.           if (_heapindex == block)
  1041.             (void) malloc (blocks * BLOCKSIZE);
  1042.           else
  1043.         {
  1044.           __ptr_t previous = malloc ((block - _heapindex) * BLOCKSIZE);
  1045.           (void) malloc (blocks * BLOCKSIZE);
  1046.           free (previous);
  1047.         }
  1048.           return NULL;
  1049.         }
  1050.       if (ptr != result)
  1051.         memmove (result, ptr, blocks * BLOCKSIZE);
  1052.     }
  1053.       break;
  1054.  
  1055.     default:
  1056.       /* Old size is a fragment; type is logarithm
  1057.      to base two of the fragment size.  */
  1058.       if (size > (size_t) (1 << (type - 1)) && size <= (size_t) (1 << type))
  1059.     /* The new size is the same kind of fragment.  */
  1060.     result = ptr;
  1061.       else
  1062.     {
  1063.       /* The new size is different; allocate a new space,
  1064.          and copy the lesser of the new size and the old. */
  1065.       result = malloc (size);
  1066.       if (result == NULL)
  1067.         return NULL;
  1068.       memcpy (result, ptr, min (size, (size_t) 1 << type));
  1069.       free (ptr);
  1070.     }
  1071.       break;
  1072.     }
  1073.  
  1074.   return result;
  1075. }
  1076. /* Copyright (C) 1991, 1992 Free Software Foundation, Inc.
  1077.  
  1078. This library is free software; you can redistribute it and/or
  1079. modify it under the terms of the GNU Library General Public License as
  1080. published by the Free Software Foundation; either version 2 of the
  1081. License, or (at your option) any later version.
  1082.  
  1083. This library is distributed in the hope that it will be useful,
  1084. but WITHOUT ANY WARRANTY; without even the implied warranty of
  1085. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  1086. Library General Public License for more details.
  1087.  
  1088. You should have received a copy of the GNU Library General Public
  1089. License along with this library; see the file COPYING.LIB.  If
  1090. not, write to the Free Software Foundation, Inc., 675 Mass Ave,
  1091. Cambridge, MA 02139, USA.
  1092.  
  1093.    The author may be reached (Email) at the address mike@ai.mit.edu,
  1094.    or (US mail) as Mike Haertel c/o Free Software Foundation.  */
  1095.  
  1096. #ifndef    _MALLOC_INTERNAL
  1097. #define    _MALLOC_INTERNAL
  1098. #include <malloc.h>
  1099. #endif
  1100.  
  1101. /* Allocate an array of NMEMB elements each SIZE bytes long.
  1102.    The entire array is initialized to zeros.  */
  1103. __ptr_t
  1104. calloc (nmemb, size)
  1105.      register size_t nmemb;
  1106.      register size_t size;
  1107. {
  1108.   register __ptr_t result = malloc (nmemb * size);
  1109.  
  1110.   if (result != NULL)
  1111.     (void) memset (result, 0, nmemb * size);
  1112.  
  1113.   return result;
  1114. }
  1115. /* Copyright (C) 1991, 1992 Free Software Foundation, Inc.
  1116. This file is part of the GNU C Library.
  1117.  
  1118. The GNU C Library is free software; you can redistribute it and/or modify
  1119. it under the terms of the GNU General Public License as published by
  1120. the Free Software Foundation; either version 2, or (at your option)
  1121. any later version.
  1122.  
  1123. The GNU C Library is distributed in the hope that it will be useful,
  1124. but WITHOUT ANY WARRANTY; without even the implied warranty of
  1125. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  1126. GNU General Public License for more details.
  1127.  
  1128. You should have received a copy of the GNU General Public License
  1129. along with the GNU C Library; see the file COPYING.  If not, write to
  1130. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  1131.  
  1132. #ifndef    _MALLOC_INTERNAL
  1133. #define    _MALLOC_INTERNAL
  1134. #include <malloc.h>
  1135. #endif
  1136.  
  1137. #ifndef    __GNU_LIBRARY__
  1138. #define    __sbrk    sbrk
  1139. #endif
  1140.  
  1141. extern __ptr_t __sbrk __P ((int increment));
  1142.  
  1143. #ifndef NULL
  1144. #define NULL 0
  1145. #endif
  1146.  
  1147. /* Allocate INCREMENT more bytes of data space,
  1148.    and return the start of data space, or NULL on errors.
  1149.    If INCREMENT is negative, shrink data space.  */
  1150. __ptr_t
  1151. __default_morecore (increment)
  1152.      ptrdiff_t increment;
  1153. {
  1154.   __ptr_t result = __sbrk ((int) increment);
  1155.   if (result == (__ptr_t) -1)
  1156.     return NULL;
  1157.   return result;
  1158. }
  1159. /* Copyright (C) 1991, 1992 Free Software Foundation, Inc.
  1160.  
  1161. This library is free software; you can redistribute it and/or
  1162. modify it under the terms of the GNU Library General Public License as
  1163. published by the Free Software Foundation; either version 2 of the
  1164. License, or (at your option) any later version.
  1165.  
  1166. This library is distributed in the hope that it will be useful,
  1167. but WITHOUT ANY WARRANTY; without even the implied warranty of
  1168. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  1169. Library General Public License for more details.
  1170.  
  1171. You should have received a copy of the GNU Library General Public
  1172. License along with this library; see the file COPYING.LIB.  If
  1173. not, write to the Free Software Foundation, Inc., 675 Mass Ave,
  1174. Cambridge, MA 02139, USA.  */
  1175.  
  1176. #ifndef    _MALLOC_INTERNAL
  1177. #define _MALLOC_INTERNAL
  1178. #include <malloc.h>
  1179. #endif
  1180.  
  1181. __ptr_t
  1182. memalign (alignment, size)
  1183.      size_t alignment;
  1184.      size_t size;
  1185. {
  1186.   __ptr_t result;
  1187.   unsigned long int adj;
  1188.  
  1189.   size = ((size + alignment - 1) / alignment) * alignment;
  1190.  
  1191.   result = malloc (size);
  1192.   if (result == NULL)
  1193.     return NULL;
  1194.   adj = (unsigned long int) ((unsigned long int) ((char *) result -
  1195.                         (char *) NULL)) % alignment;
  1196.   if (adj != 0)
  1197.     {
  1198.       struct alignlist *l;
  1199.       for (l = _aligned_blocks; l != NULL; l = l->next)
  1200.     if (l->aligned == NULL)
  1201.       /* This slot is free.  Use it.  */
  1202.       break;
  1203.       if (l == NULL)
  1204.     {
  1205.       l = (struct alignlist *) malloc (sizeof (struct alignlist));
  1206.       if (l == NULL)
  1207.         {
  1208.           free (result);
  1209.           return NULL;
  1210.         }
  1211.     }
  1212.       l->exact = result;
  1213.       result = l->aligned = (char *) result + alignment - adj;
  1214.       l->next = _aligned_blocks;
  1215.       _aligned_blocks = l;
  1216.     }
  1217.  
  1218.   return result;
  1219. }
  1220. /* Allocate memory on a page boundary.
  1221.    Copyright (C) 1991, 1992, 1993 Free Software Foundation, Inc.
  1222.  
  1223. This library is free software; you can redistribute it and/or
  1224. modify it under the terms of the GNU Library General Public License as
  1225. published by the Free Software Foundation; either version 2 of the
  1226. License, or (at your option) any later version.
  1227.  
  1228. This library is distributed in the hope that it will be useful,
  1229. but WITHOUT ANY WARRANTY; without even the implied warranty of
  1230. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  1231. Library General Public License for more details.
  1232.  
  1233. You should have received a copy of the GNU Library General Public
  1234. License along with this library; see the file COPYING.LIB.  If
  1235. not, write to the Free Software Foundation, Inc., 675 Mass Ave,
  1236. Cambridge, MA 02139, USA.
  1237.  
  1238.    The author may be reached (Email) at the address mike@ai.mit.edu,
  1239.    or (US mail) as Mike Haertel c/o Free Software Foundation.  */
  1240.  
  1241. #ifndef    _MALLOC_INTERNAL
  1242. #define    _MALLOC_INTERNAL
  1243. #include <malloc.h>
  1244. #endif
  1245.  
  1246. #ifdef    __GNU_LIBRARY__
  1247. extern size_t __getpagesize __P ((void));
  1248. #else
  1249. #include "getpagesize.h"
  1250. #define     __getpagesize()    getpagesize()
  1251. #endif
  1252.  
  1253. static size_t pagesize;
  1254.  
  1255. __ptr_t
  1256. valloc (size)
  1257.      size_t size;
  1258. {
  1259.   if (pagesize == 0)
  1260.     pagesize = __getpagesize ();
  1261.  
  1262.   return memalign (pagesize, size);
  1263. }
  1264.